home *** CD-ROM | disk | FTP | other *** search
/ Savor the Moment - Entert…ing Without Reservations / Savoe the Moment - Entertaining Without Reservations.iso / pc / CookCommite.dxr / 00025_Tooltip.ls < prev    next >
Encoding:
Text File  |  1999-10-03  |  9.2 KB  |  177 lines

  1. property mySprite, getPDLError, myString, myDelay, myPosition, myDisplaySprite, myHideFlag, myDisplayList, myStartTicks, myDisplayFlag
  2.  
  3. on getBehaviorDescription me
  4.   return "TOOLTIP" & RETURN & RETURN & "Generates a tool tip when the user rolls over the sprite." & RETURN & RETURN & "NOTE: This behavior calls the 'Display Text' behavior to actually show the message.  The 'Display Text' behavior must be attached to a different sprite which contains either a Field or a Text member." & RETURN & RETURN & "If such a sprite exists, it will automatically be selected in the Behavior Parameters dialog." & RETURN & RETURN & "If you wish the Tooltip to appear in a given position relative to the current sprite, choose the appropriate position in the Behavior Parameters dialog, and ensure that the associated 'Display Text' behavior is set to act as a Tooltip.  (If the 'Display Text' behavior is set to act as a Status Bar, then it will ignore any position data and appear in a fixed position)." & RETURN & RETURN & "You can choose to have the tooltip appear immediately on rollover, or to appear only if the mouse remains over the sprite for a given period.  You can also choose to have the tooltip disappear if the user clicks on the sprite." & RETURN & RETURN & "The Behavior Parameters dialog has limited space for entering a tool tip message.  In particular, it will not accept a string which contains the RETURN character.  If you need to display a long Tooltip which consists of several lines of text, and which must appear at the position of this sprite, then you must use send a message to this behavior containing the requiresd string.  For example:" & RETURN & RETURN & "  SendSprite (1, #Tooltip_SetMessage, " & QUOTE & "This message consists" & QUOTE & "&RETURN&" & QUOTE & "of two lines of text" & QUOTE & ")" & RETURN & RETURN & "This would produce the following message when the mouse rolls over sprite 1:" & RETURN & RETURN & "     This message consists" & RETURN & "     of two lines of text" & RETURN & RETURN & "If the tooltip generated by this behavior is to be diplayed in a Status bar then this step may be needed.  The 'Display Text' behavior will ensure that a long line of text is wrapped in the Status bar, and that scroll bars appear if necessary." & RETURN & RETURN & "PERMITTED MEMBER TYPES:" & RETURN & "All" & RETURN & RETURN & "PARAMETERS:" & RETURN & "* Tool tip to display (single-line string)" & RETURN & "* Delay before displaying tool tip (0 - 2 seconds)" & RETURN & "* Hide tool tip if sprite is clicked? (TRUE | FALSE)" & RETURN & "* Position of tool tip relative to the sprite" & RETURN & "  (This will be ignored if the 'Display Text' behavior is set to act as a status bar)." & RETURN & "* Number of the sprite where tool tip is to be displayed." & RETURN & "  (This sprite should have the 'Display Text' behavior attached to it.  If the given sprite is moved an authortime alert will invite you to update the Behavior Parameters)." & RETURN & RETURN & "PUBLIC METHODS:" & RETURN & "=> Set the tooltip message (allows the RETURN character)" & RETURN & "=> Obtain behavior reference" & RETURN & RETURN & "ASSOCIATED BEHAVIORS:" & RETURN & "+ Display Text - ESSENTIAL - must be attached to a Field or Text sprite which covers the same span of frames." & RETURN & RETURN & "You can find the 'Display Text' behavior in the Library Palette, under Media > Text > Display Text."
  5. end
  6.  
  7. on getBehaviorTooltip me
  8.   return "Use with any type of member to generate a tool tip" & RETURN & "message when the mouse is over the sprite" & RETURN & RETURN & "This behavior requires that the 'Display Text' behavior" & RETURN & "be available on a Field or Text sprite to display the" & RETURN & "messages that it generates.  If no such sprite is" & RETURN & "available an alert will appear (authortime only)." & RETURN & RETURN & "The parameter set for the associated 'Display Text'" & RETURN & "behavior determines whether the tool tip message" & RETURN & "appears in a Status Bar or as a temporary Tooltip" & RETURN & "display over or near this sprite."
  9. end
  10.  
  11. on beginSprite me
  12.   Initialize(me)
  13. end
  14.  
  15. on prepareFrame me
  16.   CheckStatus(me)
  17. end
  18.  
  19. on mouseEnter me
  20.   myStartTicks = the ticks + myDelay
  21. end
  22.  
  23. on mouseLeave me
  24.   myStartTicks = the maxinteger
  25. end
  26.  
  27. on Initialize me
  28.   mySprite = sprite(me.spriteNum)
  29.   myMember = mySprite.member
  30.   if not voidp(getPDLError) then
  31.     ErrorAlert(me, #getPDL_Invalid, myMember.type)
  32.   end if
  33.   myDisplayList = []
  34.   myStartTicks = the maxinteger
  35. end
  36.  
  37. on CheckStatus me
  38.   if myStartTicks < the ticks then
  39.     if myHideFlag then
  40.       if the mouseDown then
  41.         if myDisplayFlag then
  42.           HideTip(me)
  43.         end if
  44.         exit
  45.       end if
  46.     end if
  47.     if myDisplayFlag then
  48.       exit
  49.     end if
  50.     ShowTip(me)
  51.   else
  52.     if myDisplayFlag then
  53.       HideTip(me)
  54.     end if
  55.   end if
  56. end
  57.  
  58. on ShowTip me
  59.   myDisplayFlag = 1
  60.   case myPosition of
  61.     "centered above":
  62.       theAlignment = #bottomCenter
  63.       displayLoc = point((mySprite.left + mySprite.right) / 2, mySprite.top)
  64.     "centered below":
  65.       displayLoc = point((mySprite.left + mySprite.right) / 2, mySprite.bottom)
  66.       theAlignment = #topCenter
  67.     "at topLeft":
  68.       displayLoc = point(mySprite.left, mySprite.top)
  69.       theAlignment = #topLeft
  70.     "at topRight":
  71.       displayLoc = point(mySprite.right, mySprite.top)
  72.       theAlignment = #topRight
  73.     "centered":
  74.       centerH = (mySprite.left + mySprite.right) / 2
  75.       centerV = (mySprite.top + mySprite.bottom) / 2
  76.       displayLoc = point(centerH, centerV)
  77.       theAlignment = #center
  78.     "at bottomLeft":
  79.       displayLoc = point(mySprite.left, mySprite.bottom)
  80.       theAlignment = #bottomLeft
  81.     "at bottomRight":
  82.       displayLoc = point(mySprite.right, mySprite.bottom)
  83.       theAlignment = #bottomRight
  84.     "at regPoint":
  85.       displayLoc = mySprite.loc
  86.       theAlignment = #center
  87.     "under the mouse":
  88.       displayLoc = the mouseLoc
  89.       theAlignment = #center
  90.     #bottomLeft:
  91.       displayLoc = point(mySprite.left, mySprite.bottom)
  92.   end case
  93.   if not myDisplayList.count() then
  94.     EnrollDisplaySprite(me)
  95.   end if
  96.   call(#DisplayText_SetText, myDisplayList, myString, displayLoc, theAlignment)
  97. end
  98.  
  99. on HideTip me
  100.   myDisplayFlag = 0
  101.   if not myDisplayList.count() then
  102.     EnrollDisplaySprite(me)
  103.   end if
  104.   call(#DisplayText_SetText, myDisplayList, EMPTY)
  105. end
  106.  
  107. on EnrollDisplaySprite me
  108.   sendSprite(myDisplaySprite, #DisplayText_Enroll, myDisplayList)
  109.   if not myDisplayList.count() then
  110.     sendAllSprites(#DisplayText_Enroll, myDisplayList)
  111.     if not myDisplayList.count() then
  112.       ErrorAlert(me, #noValidSprites, myDisplaySprite)
  113.     else
  114.       ErrorAlert(me, #invalidSpriteNumber, myDisplaySprite)
  115.     end if
  116.   end if
  117. end
  118.  
  119. on GetDisplaySprite me
  120.   displayScriptMember = the number of member "Display Text"
  121.   if displayScriptMember > 0 then
  122.     displayScriptMember = member(displayScriptMember)
  123.     repeat with theSprite = 1 to the lastChannel
  124.       theScripts = sprite(theSprite).scriptList
  125.       scriptCount = theScripts.count()
  126.       repeat while scriptCount
  127.         if theScripts[scriptCount][1] = displayScriptMember then
  128.           return theSprite
  129.         end if
  130.         scriptCount = scriptCount - 1
  131.       end repeat
  132.     end repeat
  133.   end if
  134.   return the currentSpriteNum + 1
  135. end
  136.  
  137. on Tooltip_SetMessage me, theString
  138.   case ilk(theString) of
  139.     #string:
  140.     otherwise:
  141.       return #invalidTypeError
  142.   end case
  143.   myString = theString
  144. end
  145.  
  146. on Tooltip_GetReference me
  147.   return me
  148. end
  149.  
  150. on ErrorAlert me, theError, data
  151.   behaviorName = string(me)
  152.   delete word 1 of behaviorName
  153.   delete char -30001 of behaviorName
  154.   delete char -30001 of behaviorName
  155.   case data.ilk of
  156.     #void:
  157.       data = "<void>"
  158.     #symbol:
  159.       data = "#" & data
  160.   end case
  161.   case theError of
  162.     #invalidSpriteNumber:
  163.       if the runMode = "Author" then
  164.         alert("BEHAVIOR ERROR: Frame " & the frame & ", Sprite " & me.spriteNum & RETURN & "Behavior " & behaviorName && RETURN & RETURN & "Sprite " & data & " did not respond to a #DisplayText call.  Another sprite will be used.  Please open the Behavior Parameters dialog to choose the correct sprite for displaying the Tooltip message.")
  165.       end if
  166.     #noValidSprites:
  167.       if the runMode = "Author" then
  168.         alert("BEHAVIOR ERROR: Frame " & the frame & RETURN & "Behavior " & behaviorName && RETURN & RETURN & "No sprites responded to a #DisplayText call." & RETURN & RETURN & "Please ensure that the 'Display Text' behavior is attached to a Field or TextSprite in the same frames as Sprite " & me.spriteNum)
  169.       end if
  170.   end case
  171. end
  172.  
  173. on getPropertyDescriptionList me
  174.   displaySprite = GetDisplaySprite(me)
  175.   return [#myString: [#comment: "Text of tool tip:", #format: #string, #default: "Insert your single-line tool tip here"], #myDelay: [#comment: "Pause before showing tool tip (ticks):", #format: #integer, #range: [#min: 0, #max: 120], #default: 30], #myHideFlag: [#comment: "Hide tool tip if user clicks on sprite?", #format: #boolean, #default: 1], #myPosition: [#comment: "Tool tip position relative to sprite (see notes):", #format: #string, #range: ["centered above", "at topLeft", "at topRight", "centered", "at bottomLeft", "at bottomRight", "centered below", "at regPoint", "under the mouse"], #default: "centered"], #myDisplaySprite: [#comment: "Use which sprite to display tooltip?", #format: #integer, #range: [#min: 1, #max: the lastChannel], #default: displaySprite]]
  176. end
  177.